* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.topbar {
    background-color: #FF9800;
    color: white;
    padding: 10px 0;
}

.topbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    transition: color 0.3s ease-in-out;
}

.topbar a:hover {
    color: #fff;
}

.contact-info,
.topbar div {
    font-size: 1rem;
}

@media (max-width: 767px) {

    .topbar {
        padding: 5px 0;
    }

    .topbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info,
    .topbar div {
        margin-bottom: 5px;
    }

    .contact-info span,
    .topbar div span {
        display: none;
    }
}

.construction-navbar {
    background-color: #333;
    padding: 10px 0;
    border-bottom: 5px solid #FF6F00;
    transition: background-color 0.3s ease-in-out;
}

.construction-navbar:hover {
    background-color: #444;
}

.construction-navbar .navbar-nav .nav-link {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: 20px;
    font-family: Arial, Helvetica, sans-serif;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.construction-navbar .navbar-nav .nav-link:hover {
    color: #FF6F00;
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .construction-navbar .navbar-nav .nav-link {
        text-align: center;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../img/banner.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.small-main-hed {
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
}

.big-main-hed {
    font-size: 5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.main-per-hed {
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-btn {
    padding: 16px 42px;
    font-size: 18px;
    background: #fff;
    color: #000 !important;
    text-shadow: none;
    font-weight: bold;
    border-radius: 36px;
}

.contact-btn:hover {
    background-color: #ff9800;
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero-section {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

.about-title {
    font-weight: bold;
    font-size: 2rem;
    text-transform: uppercase;
}

.highlight {
    color: #f8b400;
}

.about-text {
    font-size: 1rem;
    color: #666;
    text-align:justify;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
    border-radius: 8px;
}

.icon-box:hover {
    transform: translateY(-5px);
    background: rgba(248, 180, 0, 0.1);
}

.icon-box i {
    font-size: 1.8rem;
    color: #f8b400;
}

.icon-box h5 {
    margin-bottom: 5px;
    font-weight: bold;
}

.icon-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: #f8b400;
    color: #fff;
}

.image-container {
    overflow: hidden;
    border-radius: 10px;
}

.image-container img {
    transition: transform 0.5s ease;
    width: 500px;
    height: 500px;
    border-radius: 10px;
}

.image-container:hover img {
    transform: scale(1.05);
}

.mu-sec-4 {
    margin-top: 1.5rem;
}

.mu-sec-5 {
    margin-top: 3rem;
}

.md-sec-3 {
    margin-bottom: 1rem;
}

.md-sec-4 {
    margin-bottom: 1.5rem;
}

.md-sec-5 {
    margin-bottom: 3rem;
}

.bg-service-box {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    color: #333;
    border-top: 5px solid #ffb400;
}

.service-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #ddd;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-box-services {
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
    background-color: #ffb400;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.icon-box-services i {
    font-size: 30px;
    color: #fff;
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #222;
}

.service-box p {
    font-size: 14px;
    color: #555;
}

.service-box:hover .icon-box {
    background-color: #ff7f00;
}

@media (max-width: 768px) {
    .service-box {
        padding: 15px;
    }

    .icon-box-services {
        padding: 12px;
    }

    .service-box h3 {
        font-size: 18px;
    }
}

.certified-section {
    background-color: #f8f9fa;
    border-top: 5px solid #00A859;
}

.certified-img-container {
    position: relative;
    border: 2px solid #00A859;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.certified-img-container:hover {
    transform: scale(1.05);
}

.certified-img-container img {
    width: 100%;
    height: auto;
}

.certified-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.certified-caption h4 {
    margin: 0;
}

@media (max-width: 768px) {
    .certified-caption {
        font-size: 14px;
    }
}

.bg-image {
    height: auto;
    background: url('../img/contact-bg.jpg') no-repeat center center/cover;
    position: relative;
    background-attachment: fixed;
    opacity: 0.9;
}

.contact-boxes-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px;
}

.contact-boxes {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 30%;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, background-color 0.4s ease-in-out;
    backdrop-filter: blur(5px);
}

.contact-boxes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff9800;
    opacity: 0.15;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.contact-boxes h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.contact-boxes p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.contact-boxes:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-boxes:hover::before {
    opacity: 0.3;
}

.contact-boxes:hover h3 {
    color: #ff9800;
}

.contact-boxes:hover p {
    color: #444;
}

@media (max-width: 768px) {
    .contact-boxes {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .contact-boxes {
        width: 100%;
        margin-bottom: 20px;
    }
}


/* Styling for the .fa-angle-up icon */
.fa-angle-up {
    content: "\f106";
    font-size: 20px;
    color: #ffffff;
    background-color: #ff7f50;
    padding: 10px;
    border-radius: 50%;
    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer p {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-link {
    color: #f8b400;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
}

.footer-link:hover {
    color: #ffcf40;
    transform: scale(1.1);
}

.p-ud-sec-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.p-ud-sec-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.p-ud-sec-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}